home *** CD-ROM | disk | FTP | other *** search
- #include "music.h"
-
- main( void ) //Tune conceived by Thelonius Monk
- {
- tempo = 130;
-
- note( E3, TN8 + TN8 );
- note( F3, TN8 );
- note( FS3, TN8 + TN8 );
- vnote( G3, TN8 + N2 );
-
- note( A4, TN8 + TN8 );
- note( BF4, TN8 );
- note( B4, TN8 + TN8 );
- vnote( C4, TN8 + N2 );
-
- note( G3, TN8 + TN8 );
- note( A4, TN8 );
- note( G3, TN8 + TN8 );
- note( FS3, TN8 );
- note( F3, TN8 + TN8 );
- note( A3, TN8 );
- note( B3, TN8 + TN8 );
-
- note( C3, N4 );
- note( B3, N4 );
- vnote( BF3, N2 + N8 );
-
-
- note( A4, TN8 + TN8 );
- note( BF4, TN8 );
- note( B4, TN8 + TN8 );
- vnote( C4, TN8 + N2 );
-
- note( D4, TN8 + TN8 );
- note( EF4, TN8 );
- note( E4, TN8 + TN8 );
- vnote( F4, TN8 + N2 );
-
- note( C4, TN8 + TN8 );
- note( D4, TN8 );
- note( C4, TN8 + TN8 );
- note( B4, TN8 );
- note( BF4, TN8 + TN8 );
- note( D3, TN8 );
- note( E3, TN8 + TN8 );
-
- vnote( F3, N4 + TN8 );
- note( C4, TN8 + TN8 );
- note( D4, TN8 );
- note( C4, TN8 + TN8 );
- note( D3, TN8 );
- note( E3, TN8 + TN8 );
-
- vnote( F3, TN8 + DN2 );
- return 0;
- }